@evelina You have a mountain of storage. That is not an issue. I question the use of the --build flag and attendant directory to the 'pip install' command. Firstly, is it required? Secondly, is it used correctly? Let's look at the latter, first. root@Omega-DE0B:~# pip3 install -h Usage: pip3 install [options] <requirement specifier> [package-index-options] ... pip3 install [options] -r <requirements file> [package-index-options] ... pip3 install [options] [-e] <vcs project url> ... pip3 install [options] [-e] <local project path> ... pip3 install [options] <archive url/path> ... Description: Install packages from: Quite apparent options are interpreted prior to a package(s) specification. With so much storage I would simply permit the installer to determine where to store temp files. Removal of the install option is likely a good thing in and of itself and it surely appears as though it's use is incorrect, causing the installation to fail. --Bill